html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 10px;
  height: 400px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: flex-start;
}

.swiper-slide h2,
p {
  margin: 5px 0;
  font-size: 18px;
}
.swiper-slide img {
  display: block;
  width: 90%;
  height: 450px;
  border-radius: 10px;
  object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px !important;
  background-color: #999999;
  padding: 13px 16px;
  border-radius: 50%;
  color: #fff;
}
/* card */

#main-card {
  display: flex;
  overflow: hidden;
  gap: 20px;
  position: relative;
}
#main-card-btmprev,
#main-card-btmnext {
  position: absolute;
  z-index: 100;
  top: 50%;
  padding: 10px 15px;
  border-radius: 50%;
  border: none;
}
#main-card-btmnext {
  right: 0;
}
#main-card-btmprev {
  left: 20px;
}
#card img {
  border-radius: 10px;
}
